.upload-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.upload-icon {
  background: var(--icon-default);
  mask: url('/zadania-zawodowe/SVG/upload file.png');
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: 10px;
  pointer-events: none;
  opacity: 0.85;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.drop:hover .upload-icon {
  transform: scale(1.12);
  opacity: 1;
}
